home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 039a / mawk10.zip / MSC_DOS.H < prev    next >
C/C++ Source or Header  |  1991-10-05  |  809b  |  36 lines

  1.  
  2. /********************************************
  3. msc_dos.h
  4. copyright 1991, Michael D. Brennan
  5.  
  6. This is a source file for mawk, an implementation of
  7. the AWK programming language.
  8.  
  9. Mawk is distributed without warranty under the terms of
  10. the GNU General Public License, version 2, 1991.
  11. ********************************************/
  12.  
  13. /* Microsoft C 6.0A under MSDOS */
  14.  
  15. #ifndef   CONFIG_H
  16. #define   CONFIG_H      1
  17.  
  18. #define   MSC            1
  19. #define   MSDOS                 1
  20.  
  21. #define   HAVE_PROTOS           1
  22. #define   HAVE_STDARG_H         1
  23. #define   HAVE_STDLIB_H        1
  24.  
  25. #define   FPE_TRAPS_ON        1
  26. #define   NOINFO_SIGFPE        1
  27.  
  28. #ifndef   HAVE_SMALL_MEMORY   /* allow large model override */
  29. #define   HAVE_SMALL_MEMORY     1
  30. #endif
  31.  
  32. #include "config/Idefault.h"
  33.  
  34.  
  35. #endif  /* CONFIG_H  */
  36.